home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 12581 / 12581.xpi / chrome / mintrayr.jar / content / prefs / prefs.xul < prev    next >
Extensible Markup Language  |  2010-01-21  |  3KB  |  82 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin" type="text/css"?>
  3. <?xml-stylesheet href="chrome://mintrayr/skin/prefs.css" type="text/css"?>
  4.  
  5. <!-- ***** BEGIN LICENSE BLOCK *****
  6.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  7.    -
  8.    - The contents of this file are subject to the Mozilla Public License Version
  9.    - 1.1 (the "License"); you may not use this file except in compliance with
  10.    - the License. You may obtain a copy of the License at
  11.    - http://www.mozilla.org/MPL/
  12.    -
  13.    - Software distributed under the License is distributed on an "AS IS" basis,
  14.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  15.    - for the specific language governing rights and limitations under the
  16.    - License.
  17.    -
  18.    - The Original Code is MiniTrayR extension
  19.    -
  20.    - The Initial Developer of the Original Code is
  21.    - Nils Maier.
  22.    - Portions created by the Initial Developer are Copyright (C) 2008
  23.    - the Initial Developer. All Rights Reserved.
  24.    -
  25.    - Contributor(s):
  26.    -   Nils Maier <MaierMan@web.de>
  27.    -
  28.    - Alternatively, the contents of this file may be used under the terms of
  29.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  30.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  31.    - in which case the provisions of the GPL or the LGPL are applicable instead
  32.    - of those above. If you wish to allow use of your version of this file only
  33.    - under the terms of either the GPL or the LGPL, and not to allow others to
  34.    - use your version of this file under the terms of the MPL, indicate your
  35.    - decision by deleting the provisions above and replace them with the notice
  36.    - and other provisions required by the LGPL or the GPL. If you do not delete
  37.    - the provisions above, a recipient may use your version of this file under
  38.    - the terms of any one of the MPL, the GPL or the LGPL.
  39.    -
  40.    - ***** END LICENSE BLOCK ***** -->
  41.  
  42. <!DOCTYPE prefwindow [
  43.     <!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd">
  44.     %globalDTD;
  45.     <!ENTITY % prefsDTD SYSTEM "chrome://mintrayr/locale/prefs.dtd">
  46.     %prefsDTD;
  47. ]>
  48.  
  49. <prefwindow
  50.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  51.     id="MinTrayR"
  52.     windowtype="MinTrayR:Preferences"
  53.     title="&mintrayr.prefs.title;"
  54.     persist="lastSelected screenX screenY"
  55.     style="&mintrayr.prefs.winstyle;"
  56. >
  57.     <prefpane id="paneMain" label="&mintrayr.prefs.main;">
  58.         <preferences>
  59.             <preference id="minimizeon" name="extensions.mintrayr.minimizeon" type="int"/>
  60.             <preference id="dblclickrestore" name="extensions.mintrayr.dblclickrestore" type="bool"/>
  61.             <preference id="showcontext" name="extensions.mintrayr.showcontext" type="bool"/>
  62.         </preferences>
  63.         
  64.         <groupbox>
  65.             <caption label="&mintrayr.prefs.minimizeon;"/>
  66.             <radiogroup preference="minimizeon">
  67.                 <radio value="0" label="&mintrayr.prefs.minimizeon.never;"/>
  68.                 <radio value="1" label="&mintrayr.prefs.minimizeon.minimize;"/>
  69.                 <radio value="2" label="&mintrayr.prefs.minimizeon.close;"/>
  70.                 <radio value="3" label="&mintrayr.prefs.minimizeon.both;"/>
  71.             </radiogroup>
  72.         </groupbox>
  73.             
  74.         
  75.     <groupbox>
  76.       <caption label="&mintrayr.prefs.clickbehavior;"/>
  77.       <checkbox preference="dblclickrestore" label="&mintrayr.prefs.dblclickrestore;"/>
  78.       <checkbox preference="showcontext" label="&mintrayr.prefs.showcontext;"/>
  79.     </groupbox>
  80.     </prefpane>
  81.     <prefpane id="paneSpecific"/>    
  82. </prefwindow>